home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / use.txt < prev    next >
Text File  |  1997-07-25  |  48KB  |  1,199 lines

  1.    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17.  
  18. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  19.  
  20. This file, use.txt, describes how to use the Ghostscript language
  21. interpreter.
  22.  
  23. For an overview of Ghostscript and a list of the documentation files, see
  24. README.  
  25.  
  26. ********
  27. ******** Installing Ghostscript
  28. ********
  29.  
  30. Please read the documentation file install.txt for information on installing
  31. Ghostscript.
  32.  
  33. ********
  34. ******** Shell scripts for Ghostscript
  35. ********
  36.  
  37. The Ghostscript distribution includes several Unix shell scripts for
  38. driving Ghostscript in different environments.  These are all
  39. user-contributed code: please contact the user identified in the file, not
  40. Aladdin Enterprises, if you have questions.
  41.  
  42. > pv.sh - preview a specified page of a dvi file in an X window.
  43.  
  44. > sysvlp.sh - System V 3.2 lp interface for parallel printer.
  45.  
  46. > pj-gs.sh - printing on an H-P PaintJet under HP-UX.
  47.  
  48. > unix-lpr.sh - queue filter for lpr under Unix.
  49. > lprsetup.sh - setup for unix-lpr.sh.
  50.  
  51. If one of these serves your needs, you may be able to skip most of
  52. the rest of this document.
  53.  
  54. ********
  55. ******** How to use Ghostscript ********
  56. ********
  57.  
  58. To invoke the interpreter, give the command
  59.     gs <filename1> ... <filenameN>
  60. The interpreter will read in the files in sequence (using the method
  61. described under "File searching" below to find the files) and execute them.
  62. After doing this, it reads further input from the primary input stream
  63. (normally the keyboard).  Each line (i.e. characters up to a <return>) is
  64. interpreted separately.  To exit from the interpreter, type quit<return>.
  65. The interpreter also exits gracefully if it encounters end-of-file.  Typing
  66. the interrupt character, e.g., control-C, is also safe.
  67.  
  68. The interpreter recognizes several switches described below, which may appear
  69. anywhere in the command line and apply to all files thereafter.
  70.  
  71. Many of the switches include an '=' followed by a parameter.  Because of a
  72. strange design decision in the Watcom C/C++ run-time library, you must use
  73. '#' rather than '=' with Ghostscript if Ghostscript was compiled with Watcom
  74. C/C++.  In particular, the MS-DOS executable included in the standard
  75. Ghostscript distribution (gs386.exe) was compiled this way.
  76.  
  77. You can get a brief help message by invoking Ghostscript with
  78.     gs -h
  79. or
  80.     gs -?
  81. This message also lists the available devices.  For a little more
  82. information about available devices, a one-line description of each device
  83. appears near the beginning of the file devs.mak.
  84.  
  85. Choosing the output device
  86. --------------------------
  87.  
  88. Ghostscript may be built with multiple output devices.  Ghostscript
  89. normally opens the first one and directs output to it.  To use device xyz
  90. as the initial output device, include the switch
  91.     -sDEVICE=xyz
  92. in the command line.  Note that this switch must precede the first .ps
  93. file, and only its first invocation has any effect.  For example, for
  94. printer output in a normal configuration that includes an Epson printer
  95. driver, you might use the shell command
  96.     gs -sDEVICE=epson myfile.ps
  97. instead of just
  98.     gs myfile.ps
  99. Alternatively, once you are inside Ghostscript, you can type
  100.     (epson) selectdevice
  101.     (myfile.ps) run
  102. All output then goes to the printer instead of the display until further
  103. notice.  You can switch devices at any time by using the selectdevice
  104. procedure, e.g.,
  105.     (vga) selectdevice
  106. or
  107.     (epson) selectdevice
  108. As yet a third alternative, you can define an environment variable
  109. GS_DEVICE as the desired default device name.  The order of precedence for
  110. these alternatives, highest to lowest, is:
  111.     selectdevice
  112.     (command line)
  113.     GS_DEVICE
  114.     (first device in build list)
  115.  
  116. To select the resolution on a printer, use the shell command
  117.     gs -sDEVICE=<device> -r<xres>x<yres>
  118. For example, on a 9-pin Epson-compatible printer, you can get the
  119. lowest-resolution (fastest) mode with
  120.     gs -sDEVICE=epson -r60x72
  121. and the highest-resolution mode with
  122.     gs -sDEVICE=epson -r240x72.
  123. On a 24-pin printer, the lowest resolution is
  124.     gs -sDEVICE=epson -r60x60
  125. and the highest-resolution 24-pin mode is
  126.     gs -sDEVICE=epson -r360x180
  127.  
  128. If you select a printer as the output device, Ghostscript also allows you
  129. to control where the device sends its output.  Normally, output goes
  130. directly to the printer (PRN) on MS-DOS systems, and to a scratch file on
  131. Unix or VMS systems.  To send the output to a series of files foo1.xyz,
  132. foo2.xyz, ..., use the switch
  133.     -sOutputFile=foo%d.xyz
  134. (For compatibility with older versions of Ghostscript, -sOUTPUTFILE=
  135. also works.)  The %d is a printf format specification; you can use
  136. other formats like %02d.  Each file will receive one page of output.
  137. Alternatively, to send the output to a single file foo.xyz, with all
  138. the pages concatenated, use the switch
  139.     -sOutputFile=foo.xyz
  140.  
  141. On Unix systems, you can send the output directly to a pipe.  For
  142. example, to pipe the output to the command `lpr' (which, on many Unix
  143. systems, is the command that spools output for a printer), use the
  144. switch
  145.     -sOutputFile=\|lpr
  146. You can also send output to stdout for piping with the switch
  147.     -sOutputFile=-
  148. In this case you must also use the -q switch, to prevent Ghostscript from
  149. writing messages to stdout.
  150.  
  151. File formats like PCX and PBM are also 'devices'.  When you select a file
  152. format as the 'device', you must also specify an output file, e.g.,
  153.     gs -sDEVICE=pcxmono -sOutputFile=xyz.pcx
  154.  
  155. To find out what devices are available, type
  156.     devicenames ==
  157. after starting up Ghostscript.  Alternatively you can use the -h or
  158. -? switch in the command line, as described above.
  159.  
  160. Choosing paper size
  161. -------------------
  162.  
  163. Ghostscript is normally configured to use U.S. letter paper as the default.
  164. To select a different default paper size, find the line in gs_init.ps that
  165. says
  166.  
  167.     % Optionally choose a default paper size other than U.S. letter.
  168.  
  169. The next line begins
  170.  
  171.     % (a4)
  172.  
  173. To select A4 as the default paper size, remove the % but do not change
  174. anything else.  To select a different default paper size, remove the % and
  175. replace the word a4 with the name of the desired paper size.  You can use
  176. any paper size listed in the table at the beginning of gs_statd.ps.
  177.  
  178. Alternatively, to select a different default paper size for a single
  179. invocation of Ghostscript, you can use the command line switch
  180.     -sPAPERSIZE=a_known_paper_size
  181. e.g.,
  182.     -sPAPERSIZE=a4
  183. or
  184.     -sPAPERSIZE=legal
  185.  
  186. Individual documents also can (and often do) specify a paper size, which
  187. will take precedence over the default one.  If you want to force a specific
  188. paper size, ignoring the paper size specified in the document, make that
  189. paper size the default (as just described), and also include
  190.     -dFIXEDMEDIA
  191. on the command line.
  192.  
  193. Finally, most (but not all) of Ghostscript's printer drivers can be
  194. configured at compile time to use A4 paper as the default by including
  195. -DA4 in the CFLAGS switches in the makefile.  See make.txt for more
  196. details.
  197.  
  198. File searching
  199. --------------
  200.  
  201. When looking for initialization files (gs_*.ps, pdf_*.ps), font files, the
  202. Fontmap file, and files named on the command line, Ghostscript first tests
  203. whether the file name specifies an explicit directory.  The test is as
  204. follows:
  205.  
  206.     - On Unix systems, Ghostscript tests whether the name begins with
  207.     '/', or with one or more '.'s followed by a '/'.
  208.  
  209.     - On MS-DOS or MS Windows systems, Ghostscript tests whether the
  210.     name has a ':' as its second character, or begins with '/' or
  211.     '\', or with one or more '.'s followed by a '/' or '\'.
  212.  
  213.     - On VMS systems, Ghostscript tests whether the name contains a
  214.     node, device, root, or directory specification.
  215.  
  216. If the file name does specify an explicit directory (the test succeeds),
  217. Ghostscript simply tries to open the file using the given name.  Otherwise,
  218. Ghostscript will try directories in the following order:
  219.  
  220.     - The current directory (unless disabled by the -P- switch);
  221.  
  222.     - The directory/ies specified by the -I switch(es) in the command
  223.       line (see below), if any;
  224.  
  225.     - The directory/ies specified by the GS_LIB environment variable,
  226.       if any;
  227.  
  228.     - The directory/ies specified by the GS_LIB_DEFAULT macro in the
  229.       Ghostscript makefile, if any.
  230.  
  231. Each of these (GS_LIB_DEFAULT, GS_LIB, and -I parameter) may be either a
  232. single directory, or a list of directories separated by a character
  233. appropriate for the operating system (':' on Unix systems, ';' on VMS
  234. systems, ';' on MS-DOS systems).  We think that trying the current directory
  235. first is a very bad idea -- it opens serious security loopholes and can lead
  236. to very confusing errors if one has more than one version of Ghostscript in
  237. one's environment -- but when we attempted to change it, users insisted that
  238. we change it back.  You can disable looking in the current directory first
  239. using the -P- switch described below.
  240.  
  241. Note that Ghostscript does not use this file searching algorithm for the
  242. 'run' or 'file' operators: for these operators, it simply opens the file
  243. with the given name.  To run a file using the searching algorithm, use
  244. 'runlibfile' instead of 'run'.
  245.  
  246. Resources
  247. ---------
  248.  
  249. Ghostscript uses a completely different rule for looking for files
  250. containing PostScript Level 2 "resources": per the Adobe documentation, it
  251. concatenates together:
  252.  
  253.     - The value of the system parameter GenericResourceDir
  254.     (initially "/Resource/");
  255.  
  256.     - The name of the resource category (e.g., ProcSet);
  257.  
  258.     - The value of the system parameter GenericResourcePathSep
  259.     (initially "/");
  260.  
  261.     - The name of the resource instance (e.g., CIDInit).
  262.  
  263. For looking up fonts, after exhausting the search method described in the
  264. next section, it concatenates together:
  265.  
  266.     - The value of the system parameter FontResourceDir
  267.     (initially "/Resource/Font/");
  268.  
  269.     - The name of the resource font (e.g., Times-Roman).
  270.  
  271. Note that even though the system parameters are named somethingDir, they are
  272. not just plain directory names: they have a "/" on the end, so that they can
  273. be concatenated with the category name or font name.
  274.  
  275. Font lookup
  276. -----------
  277.  
  278. Ghostscript has slightly different rules for determining how to find the
  279. file containing a font with a given name.  It starts by looking for Fontmap
  280. files in every directory on the search path: these files provide mappings
  281. between font names and file names.  (See the Fontmap file in the Ghostscript
  282. distribution for details.)  If it can't find a font in any Fontmap file in
  283. the search path (or in the list provided with the -sFONTMAP= switch, if
  284. present), it looks at the GS_FONTPATH environment variable (or the value
  285. provided with the -sFONTPATH= switch, if present), which is also a list of
  286. directories.  It goes to those directories, one by one, and looks for all
  287. files that appear to contain PostScript fonts; it then effectively adds all
  288. those files and fonts to its internal copy of the Fontmap (the catalog of
  289. fonts and the files that contain them).  If you are using one of the
  290. following types of computer, you may wish to set GS_FONTPATH to the
  291. indicated value so that Ghostscript will automatically acquire all the
  292. installed Type 1 fonts:
  293.  
  294.     System type        GS_FONTPATH
  295.     -----------        -----------
  296.     DEC OSF/1        /usr/lib/X11/fonts/Type1Adobe
  297.     DEC Ultrix        /usr/lib/DPS/outline/decwin
  298.     HP-UX 9            /usr/lib/X11/fonts/type1.st/typefaces
  299.     IBM AIX            /usr/lpp/DPS/fonts/outlines
  300.       "            /usr/lpp/X11/lib/X11/fonts/Type1
  301.       "            /usr/lpp/X11/lib/X11/fonts/Type1/DPS
  302.     NeXT            /NextLibrary/Fonts/outline
  303.     SGI IRIX        /usr/lib/DPS/outline/base
  304.       "            /usr/lib/X11/fonts/Type1
  305.     Sun SunOS 4.x        /usr/openwin/lib/X11/fonts/Type1/outline
  306.       " (NeWSprint only)
  307.    newsprint_2.5/SUNWsteNP/reloc/$BASEDIR/NeWSprint/small_openwin/lib/fonts
  308.     Sun Solaris 2        /usr/openwin/lib/X11/fonts/Type1/outline
  309.     VMS            SYS$COMMON:[SYSFONT.XDPS.OUTLINE]
  310.  
  311. These paths may not be exactly right for your installation; if the
  312. indicated directory doesn't contain files whose names are familiar font
  313. names like Courier and Helvetica, you may wish to ask your system
  314. administrator where to find these fonts.
  315.  
  316. NOTE: On Solaris systems simply setting GS_FONTPATH may not work, because
  317. for some reason some versions of Ghostscript can't seem to find any of the
  318. Type1 fonts in /usr/openwin/lib/X11/fonts/Type1/outline.  It says: "15
  319. files, 15 scanned, 0 new fonts".  See Fontmap.Sol instead.
  320.  
  321. Temporary files
  322. ---------------
  323.  
  324. By default, Ghostscript creates temporary files named _temp_XX.XXX in the
  325. current directory on MS-DOS and VMS systems, gsXXXXXX in the current
  326. directory on OS/2 systems, and gs_XXXXX in the /tmp directory on Unix
  327. systems.  You can change the directory in which Ghostscript will create
  328. these files by setting the TEMP environment variable to the name of the
  329. directory.
  330.  
  331. Ghostscript currently doesn't do a very good job of deleting temporary
  332. files when it exits; you may have to delete them manually from time to
  333. time.
  334.  
  335. Environment variable summary
  336. ----------------------------
  337.  
  338. GS_DEVICE
  339.     Defines the default output device.  Described above.
  340.  
  341. GS_FONTPATH
  342.     Specifies a list of directories that should be scanned for fonts
  343. at startup.  Described above.
  344.  
  345. GS_LIB
  346.     Provides a search path for initialization files and fonts.
  347. Described above.
  348.  
  349. GS_OPTIONS
  350.     Defines a list of command line arguments to be processed before
  351. the ones actually specified on the command line.  For example, setting
  352. GS_DEVICE to xxx is equivalent to setting GS_OPTIONS to -sDEVICE=xxx.  The
  353. contents of GS_OPTIONS are not limited to switches; they may include
  354. actual file names or even @file arguments.
  355.  
  356. TEMP
  357.     Defines a directory name for temporary files.  Described above.
  358.  
  359. ********
  360. ******** Using Ghostscript and Ghostview with PDF files
  361. ********
  362.  
  363. Ghostscript is normally configured (except on 16-bit MS-DOS platforms) so
  364. that it can interpret both PostScript and PDF files (the latter are
  365. sometimes incorrectly called "Acrobat files").  It examines each file to
  366. determine automatically whether it is a PDF file or a PostScript file.  All
  367. the normal switches and procedures for interpreting PostScript files also
  368. apply to PDF files, with a few exceptions noted below.  In addition, there
  369. is a shell script
  370.  
  371.         pdf2ps input.pdf output.ps
  372.  
  373. that converts PDF to (Level 2) PostScript.
  374.  
  375. Switches not applicable to PDF files
  376. ------------------------------------
  377.  
  378. You cannot use the `-' switch to provide PDF input from stdin or a pipe.
  379. The PDF language, unlike the PostScript language, inherently requires random
  380. access to the file.
  381.  
  382. Added switches for PDF files
  383. ----------------------------
  384.  
  385.     -dFirstPage=pagenumber
  386.         Starts interpreting on the given page of the document.
  387.  
  388.     -dLastPage=pagenumber
  389.         Stops interpreting after the given page of the document.
  390.  
  391.     -sPSFile=filename
  392.         Writes the PostScript equivalent of the PDF input on the
  393.         given file.
  394.  
  395. Ghostview and PDF files
  396. -----------------------
  397.  
  398. Since Ghostview pipes PostScript files to Ghostscript, you cannot view PDF
  399. files with Ghostview just by saying
  400.         ghostview file.pdf
  401. Instead there are two options:
  402.  
  403.    1. Tanmoy Bhattacharya has written some patches for Ghostview 1.5
  404.    that allow it to read and display PDF files.  These are available
  405.    from:
  406.        ftp://gita.lanl.gov/people/tanmoy/hypertex/gv1.5gs3.33hack.tar.gz
  407.  
  408.    2. Start Ghostview as follows:
  409.           ghostview -arguments file.pdf quit.ps
  410.    This will allow you to display a PDF file, but you won't be able
  411.    to jump to particular pages.  Use Tanmoy's code if you want that
  412.    facility.
  413.  
  414. ********
  415. ******** Notes on specific platforms ********
  416. ********
  417.  
  418. VMS
  419. ---
  420.  
  421. On VMS systems, the last character of each "directory" name indicates what
  422. sort of entity the "directory" references.  If the "directory" name ends
  423. with a colon, it is taken as referring to a logical device, e.g.:
  424.     $ DEFINE GHOSTSCRIPT_DEVICE DUA1:[GHOSTSCRIPT_14]
  425.     $ DEFINE GS_LIB GHOSTSCRIPT_DEVICE:
  426. If the "directory" name ends with a closing square bracket, it is taken as
  427. referring to a real directory, e.g.:
  428.     $ DEFINE GS_LIB DUA1:[GHOSTSCRIPT]
  429.  
  430. In order to specify switches and file names when invoking the interpreter,
  431. define GS as a foreign command:
  432.     $ GS == "$disk:[directory]GS.EXE"
  433. where "disk" and "directory" specify the disk and directory where Ghostscript
  434. is located.  For instance,
  435.     $ GS == "$DUA1:[GHOSTSCRIPT]GS.EXE"
  436. To allow the interpreter to be run from any directory, define the logical
  437. GS_LIB which points to the Ghostscript directory
  438.     $ DEFINE GS_LIB disk:[directory]
  439. This allows Ghostscript to locate its initialization files stored in the
  440. Ghostscript directory -- see use.txt for further details.  Finally, to
  441. invoke the interpreter, merely type GS.  Although DCL normally converts
  442. unquoted parameters to upper case, C programs receive their parameters in
  443. lower case.  That is, the command
  444.     $ GS -Isys$login:
  445. passes the switch "-isys$login" to the interpreter.  To preserve the
  446. case of switches, enclose them in double quotes; e.g.,
  447.     $ GS "-Isys$login:"
  448.  
  449. If you are on an X Windows display (for which gs is built), you can do
  450.  
  451.     $ set display/create/node="domain-name"/transport=tcpip
  452.  
  453. For example,
  454.  
  455.     $ set display/create/node="doof.city.com"/transport=tcpip
  456.  
  457. and then run Ghostscript
  458.  
  459.     $ gs
  460.  
  461. If you write printer output to a file and then want to print the file
  462. later, use the "/PASSALL" qualifier to the PRINT command.
  463.  
  464. In order to get PDF files (or PostScript files that use the setfileposition
  465. operator) to work properly on VMS systems, you must ensure that they are
  466. "stream LF" type files.  (**NOTE**: This only applies if you are using DEC C
  467. to compile Ghostscript; there is no known way to get these files to work
  468. properly with the old VAX C compiler.)  If you transfer files by FTP, you
  469. probably need to do one of the following two things after the transfer:
  470.  
  471. 1. If FTP'd in text/ASCII mode then do:
  472.  
  473.      $ CONVERT/FDL=STREAMLF.FDL input-file output-file
  474.  
  475.    where the contents of the file STREAMLF.FDL are given below.
  476.  
  477. 2. Otherwise, if FTP'd in binary mode do
  478.  
  479.      $ SET FILE/ATTRIBUTE=(RFM:STMLF)
  480.  
  481. The contents of the STREAMLF.FDL file are shown between, and exclusive of, the
  482. dashed lines:
  483.  
  484. -------------------------------------------------
  485. FILE
  486.         ORGANIZATION            sequential
  487.  
  488. RECORD
  489.         BLOCK_SPAN              yes
  490.         CARRIAGE_CONTROL        carriage_return
  491.         FORMAT                  stream_lf
  492. -------------------------------------------------
  493.  
  494. MS-DOS
  495. ------
  496.  
  497. Ghostscript supports many SuperVGA displays directly, most of them with
  498. more than 16 colors.  The complete list is in the file devs.mak, which is
  499. part of the Ghostscript source code.  (If you got Ghostscript under the
  500. Aladdin Ghostscript Free Public License, the person or place from which you
  501. got it is also required to make the source code available to you; if you
  502. got it under the GNU License, see the GNU License for more information.)
  503.  
  504. Some applications, such as Microsoft Word, require a prologue in front of
  505. the PostScript files they output.  In the case of Word, this is one of the
  506. *.ini files included with the Word distribution.  Other applications may
  507. require other prologues.  These may be specified on the Ghostscript
  508. command line, e.g.,
  509.     gs prologue.ini myfile.ps
  510.  
  511. If you have a SuperVGA display that supports a 16-color mode with 800x600
  512. pixels, and you know the display mode number for this mode, you can select
  513. it by using the command line switches
  514.     -sDEVICE=svga16 -dDisplayMode=NNN
  515. where NNN is the display mode number in decimal.  The modes for some
  516. popular display chipsets are as follows:
  517.  
  518.     Acumos AVGA2, AVGA3                         88    (0x58)
  519.     Advance Logic AL2101                        43    (0x2B)
  520.     Ahead V5000                                 113    (0x71)
  521.     ATI VGAWONDER, Graphics Ultra etc.          84    (0x54)
  522.     Chips and Technologies                      106    (0x6A)
  523.     Cirrus Logic CL-GD 500/600                  100    (0x64)
  524.     Cirrus Logic GD 5422                        88    (0x58)
  525.     Compaq VGA                                  89    (0x59)
  526.     CTI                                         106    (0x6A)
  527.   * Genoa 5xxx, Sigma VGA                       41    (0x29)
  528.     Genoa 6xxx                                  106    (0x6A)
  529.     MXIC MX 68010                               85    (0x55)
  530.     NCR 77C22                                   88    (0x58)
  531.     OAK Technologies OTI-067, OTI-077, OTI037C  82    (0x52)
  532.     OAK Technologies OTI037C w/ NEL BIOS        91    (0x5B)
  533.   * Orchid Prodesigner                          41    (0x29)
  534.     Paradise                                    88    (0x58)
  535.     Poach                                       106    (0x6A)
  536.     Primus                                      42    (0x2A)
  537.     Realtek RT 3106                             31    (0x1F)
  538.     Tecmar                                      22    (0x16)
  539.     Trident 8900                                91    (0x5B)
  540.   * Tseng ET-3000, ET-4000                      41    (0x29)
  541.   * VEGA                                        41    (0x29)
  542.     Video 7 SVGA                                98    (0x62)
  543.     WD90C11                                     92    (0x5C)
  544.     Western Digital                             88    (0x58)
  545.  
  546. The ones marked * are the default (they all use the same value.)  If your
  547. card's chipset doesn't appear on this list, or if you try the value here
  548. and it doesn't work, please e-mail the chipset and correct display mode to
  549. ghost@aladdin.com for inclusion in future releases.
  550.  
  551. NOTE: The remainder of the MS-DOS section is currently not relevant, because
  552. the Borland compilers do not support 32-bit MS-DOS executables, and
  553. Ghostscript no longer supports the 16-bit MS-DOS environment.  We have
  554. retained this section on the off-chance that Borland will support 32-bit
  555. MS-DOS compilation at some future time.
  556.  
  557. If you are running Ghostscript on a MS-DOS machine with a display that is
  558. not EGA/VGA compatible, you must use the Borland compiler.  You must build
  559. Ghostscript with the BGI driver as the default, and you will need the
  560. appropriate .BGI file from the Borland Turbo C library.  (Ghostscript
  561. includes the EGA/VGA driver in the executable.)
  562.  
  563. If you are using the BGI driver, two additional environment variables
  564. become relevant:
  565.  
  566.     BGIPATH - defines the directory where Ghostscript will look for
  567. the appropriate BGI driver.  If BGIPATH is not defined, Ghostscript will
  568. look in the directory defined as BGIDIR in the makefile.  In either case,
  569. if no driver is found in the designated directory, Ghostscript will look
  570. in the current directory.
  571.  
  572.     BGIUSER - a string of the form nn.dname, where nn is a hexadecimal
  573. number giving a display mode and dname is the name of a file containing a
  574. user-supplied BGI driver.  If BGIUSER is defined and the BGI device is
  575. selected, Ghostscript will supply nn as the display mode and will obtain
  576. the driver from the file named dname.
  577.  
  578. X Windows
  579. ---------
  580.  
  581. Ghostscript looks for the following resources under the program name
  582. "ghostscript" and class name "Ghostscript":
  583.  
  584.     Name            Class            Default
  585.     ----            -----            -------
  586.     background        Background        white
  587.     foreground        Foreground        black
  588.     borderColor        BorderColor        black
  589.     borderWidth        BorderWidth        1
  590.     geometry        Geometry        NULL
  591.     xResolution        Resolution        **
  592.     yResolution        Resolution        **
  593.     useExternalFonts    UseExternalFonts    true
  594.     useScalableFonts    UseScalableFonts    true
  595.     logExternalFonts    LogExternalFonts    false
  596.     externalFontTolerance    ExternalFontTolerance    10.0
  597.     palette            Palette            Color
  598.     maxGrayRamp        MaxGrayRamp        128
  599.     maxRGBRamp        MaxRGBRamp        5
  600.         maxDynamicColors    MaxDynamicColors    256
  601.     useBackingPixmap    UseBackingPixmap    true
  602.     useXPutImage        UseXPutImage        true
  603.     useXSetTile        UseXSetTile        true
  604.     regularFonts        RegularFonts        see below
  605.     symbolFonts        SymbolFonts        see below
  606.     dingbatFonts        DingbatFonts        see below
  607.  
  608. ** Calculated from display metrics.
  609.  
  610.     Notes on Resources:
  611.  
  612.     Ghostscript doesn't look at the default system background and
  613.     foreground colors; if you want to change the background or
  614.     foreground color, you must set them explicitly for Ghostscript.
  615.     (This is a deliberate choice, so that PostScript documents will
  616.     display correctly -- with white = white and black = black --
  617.     by default, even if text windows use other colors.)
  618.  
  619.     The geometry resource only affects window placement.
  620.  
  621.     Resolution is given in pixels per inch.
  622.  
  623.     The font tolerance gives largest acceptable difference in
  624.     height of the screen font.  The tolerance is expressed as
  625.     a percentage of the height of the desired font.
  626.  
  627.     The palette resource can be used to restrict ghostscript to
  628.     using a grayscale or monochrome palette.
  629.  
  630.     The maxRGBRamp and maxGrayRamp control the maximum number of
  631.     colors that ghostscript allocates ahead of time for the dither
  632.     cube/ramp.  Ghostscript will never preallocate more than half
  633.     of the cells in a colormap.  maxDynamicColors controls the
  634.     maximum number of colors that Ghostscript will allocate
  635.     dynamically in the colormap.
  636.  
  637. The use... resources exist primarily to work around bugs in X servers.  In
  638. particular, many versions of DEC's X server (DECwindows) have bugs that
  639. require setting useXPutImage or useXSetTile to false.
  640.  
  641.     Some servers do not implement backing pixmaps properly, or do not
  642.     have enough memory for them.  If you get strange behavior or "out
  643.     of memory" messages, try setting useBackingPixmap to false.
  644.  
  645.     Some servers do not implement tiling properly.  This will show up
  646.     as broad bands of color where dither patterns should appear.  If
  647.     this happens, try setting useXSetTile to false.
  648.  
  649.     Some servers do not implement bitmap/pixmap displaying properly.
  650.     This may show up as white or black rectangles where characters
  651.     should appear, or characters may appear in "inverse video" (e.g.,
  652.     white on a black rectangle).  If this happens, try setting
  653.     useXPutImage to false.
  654.  
  655. To use native X11 fonts, Ghostscript must map PostScript font names to
  656. the XLFD font names.  The regularFonts, symbolFonts, and dingbatFonts
  657. resources give the name mapping for different encodings.  The XLFD font 
  658. name in the mapping must contain seven dashes.  The X driver adds the
  659. additional size and encoding fields to bring the total number of dashes
  660. in the font name to 14.  Here are the default font mappings:
  661.  
  662.   Regular Fonts: (Fonts available in standard or ISO-Latin-1 encoding)
  663.  
  664.     AvantGarde-Book:-Adobe-ITC Avant Garde Gothic-Book-R-Normal--\n\
  665.     AvantGarde-BookOblique:-Adobe-ITC Avant Garde Gothic-Book-O-Normal--\n\
  666.     AvantGarde-Demi:-Adobe-ITC Avant Garde Gothic-Demi-R-Normal--\n\
  667.     AvantGarde-DemiOblique:-Adobe-ITC Avant Garde Gothic-Demi-O-Normal--\n\
  668.     Bookman-Demi:-Adobe-ITC Bookman-Demi-R-Normal--\n\
  669.     Bookman-DemiItalic:-Adobe-ITC Bookman-Demi-I-Normal--\n\
  670.     Bookman-Light:-Adobe-ITC Bookman-Light-R-Normal--\n\
  671.     Bookman-LightItalic:-Adobe-ITC Bookman-Light-I-Normal--\n\
  672.     Courier:-Adobe-Courier-Medium-R-Normal--\n\
  673.     Courier-Bold:-Adobe-Courier-Bold-R-Normal--\n\
  674.     Courier-BoldOblique:-Adobe-Courier-Bold-O-Normal--\n\
  675.     Courier-Oblique:-Adobe-Courier-Medium-O-Normal--\n\
  676.     Helvetica:-Adobe-Helvetica-Medium-R-Normal--\n\
  677.     Helvetica-Bold:-Adobe-Helvetica-Bold-R-Normal--\n\
  678.     Helvetica-BoldOblique:-Adobe-Helvetica-Bold-O-Normal--\n\
  679.     Helvetica-Narrow:-Adobe-Helvetica-Medium-R-Narrow--\n\
  680.     Helvetica-Narrow-Bold:-Adobe-Helvetica-Bold-R-Narrow--\n\
  681.     Helvetica-Narrow-BoldOblique:-Adobe-Helvetica-Bold-O-Narrow--\n\
  682.     Helvetica-Narrow-Oblique:-Adobe-Helvetica-Medium-O-Narrow--\n\
  683.     Helvetica-Oblique:-Adobe-Helvetica-Medium-O-Normal--\n\
  684.     NewCenturySchlbk-Bold:-Adobe-New Century Schoolbook-Bold-R-Normal--\n\
  685.     NewCenturySchlbk-BoldItalic:-Adobe-New Century Schoolbook-Bold-I-Normal--\n\
  686.     NewCenturySchlbk-Italic:-Adobe-New Century Schoolbook-Medium-I-Normal--\n\
  687.     NewCenturySchlbk-Roman:-Adobe-New Century Schoolbook-Medium-R-Normal--\n\
  688.     Palatino-Bold:-Adobe-Palatino-Bold-R-Normal--\n\
  689.     Palatino-BoldItalic:-Adobe-Palatino-Bold-I-Normal--\n\
  690.     Palatino-Italic:-Adobe-Palatino-Medium-I-Normal--\n\
  691.     Palatino-Roman:-Adobe-Palatino-Medium-R-Normal--\n\
  692.     Times-Bold:-Adobe-Times-Bold-R-Normal--\n\
  693.     Times-BoldItalic:-Adobe-Times-Bold-I-Normal--\n\
  694.     Times-Italic:-Adobe-Times-Medium-I-Normal--\n\
  695.     Times-Roman:-Adobe-Times-Medium-R-Normal--\n\
  696.     ZapfChancery-MediumItalic:-Adobe-ITC Zapf Chancery-Medium-I-Normal--
  697.  
  698.   Symbol Fonts:  (using Symbol encoding)
  699.  
  700.     Symbol: -Adobe-Symbol-Medium-R-Normal--
  701.  
  702.   Dingbat Fonts: (using Dingbat encoding)
  703.  
  704.     ZapfDingbats: -Adobe-ITC Zapf Dingbats-Medium-R-Normal--
  705.  
  706. For X11/NeWS, one can use the OpenWindows scalable fonts instead, which
  707. will give good quality output for any point size.  In this environment,
  708. the relevant section of the resource file should look like this:
  709.  
  710. Ghostscript.regularFonts: \
  711.     AvantGarde-Book:        -itc-avantgarde-book-r-normal-- \n\
  712.     AvantGarde-BookOblique:        -itc-avantgarde-book-o-normal-- \n\
  713.     AvantGarde-Demi:        -itc-avantgarde-demi-r-normal-- \n\
  714.     AvantGarde-DemiOblique:        -itc-avantgarde-demi-o-normal-- \n\
  715.     Bembo:                -monotype-bembo-medium-r-normal-- \n\
  716.     Bembo-Bold:            -monotype-bembo-bold-r-normal-- \n\
  717.     Bembo-BoldItalic:        -monotype-bembo-bold-i-normal-- \n\
  718.     Bembo-Italic:            -monotype-bembo-medium-i-normal-- \n\
  719.     Bookman-Demi:            -itc-bookman-demi-r-normal-- \n\
  720.     Bookman-DemiItalic:        -itc-bookman-demi-i-normal-- \n\
  721.     Bookman-Light:            -itc-bookman-light-r-normal-- \n\
  722.     Bookman-LightItalic:        -itc-bookman-light-i-normal-- \n\
  723.     Courier:            -itc-courier-medium-r-normal-- \n\
  724.     Courier-Bold:            -itc-courier-bold-r-normal-- \n\
  725.     Courier-BoldOblique:        -itc-courier-bold-o-normal-- \n\
  726.     Courier-Oblique:        -itc-courier-medium-o-normal-- \n\
  727.     GillSans:            -monotype-gill-medium-r-normal-sans- \n\
  728.     GillSans-Bold:            -monotype-gill-bold-r-normal-sans- \n\
  729.     GillSans-BoldItalic:        -monotype-gill-bold-i-normal-sans- \n\
  730.     GillSans-Italic:        -monotype-gill-normal-i-normal-sans- \n\
  731.     Helvetica:            -linotype-helvetica-medium-r-normal-- \n\
  732.     Helvetica-Bold:            -linotype-helvetica-bold-r-normal-- \n\
  733.     Helvetica-BoldOblique:        -linotype-helvetica-bold-o-normal-- \n\
  734.     Helvetica-Narrow:        -linotype-helvetica-medium-r-narrow-- \n\
  735.     Helvetica-Narrow-Bold:        -linotype-helvetica-bold-r-narrow-- \n\
  736.     Helvetica-Narrow-BoldOblique:    -linotype-helvetica-bold-o-narrow-- \n\
  737.     Helvetica-Narrow-Oblique:    -linotype-helvetica-medium-o-narrow-- \n\
  738.     Helvetica-Oblique:        -linotype-helvetica-medium-o-normal-- \n\
  739.     LucidaBright:            -b&h-lucidabright-medium-r-normal-- \n\
  740.     LucidaBright-Demi:        -b&h-lucidabright-demibold-r-normal-- \n\
  741.     LucidaBright-DemiItalic:    -b&h-lucidabright-demibold-i-normal-- \n\
  742.     LucidaBright-Italic:        -b&h-lucidabright-medium-i-normal-- \n\
  743.     LucidaSans:            -b&h-lucida-medium-r-normal-sans- \n\
  744.     LucidaSans-Bold:        -b&h-lucida-bold-r-normal-sans- \n\
  745.     LucidaSans-BoldItalic:        -b&h-lucida-bold-i-normal-sans- \n\
  746.     LucidaSans-Italic:        -b&h-lucida-medium-i-normal-sans- \n\
  747.     LucidaSans-Typewriter:        -b&h-lucidatypewriter-medium-r-normal-sans- \n\
  748.     LucidaSans-TypewriterBold:    -b&h-lucidatypewriter-bold-r-normal-sans- \n\
  749.     NewCenturySchlbk-BoldItalic:    -linotype-new century schoolbook-bold-i-normal-- \n\
  750.     NewCenturySchlbk-Bold:        -linotype-new century schoolbook-bold-r-normal-- \n\
  751.     NewCenturySchlbk-Italic:    -linotype-new century schoolbook-medium-i-normal-- \n\
  752.     NewCenturySchlbk-Roman:        -linotype-new century schoolbook-medium-r-normal-- \n\
  753.     Palatino-Bold:            -linotype-palatino-bold-r-normal-- \n\
  754.     Palatino-BoldItalic:        -linotype-palatino-bold-i-normal-- \n\
  755.     Palatino-Italic:        -linotype-palatino-medium-i-normal-- \n\
  756.     Palatino-Roman:            -linotype-palatino-medium-r-normal-- \n\
  757.     Rockwell:            -monotype-rockwell-medium-r-normal-- \n\
  758.     Rockwell-Bold:            -monotype-rockwell-bold-r-normal-- \n\
  759.     Rockwell-BoldItalic:        -monotype-rockwell-bold-i-normal-- \n\
  760.     Rockwell-Italic:        -monotype-rockwell-medium-i-normal-- \n\
  761.     Times-Bold:            -linotype-times-bold-r-normal-- \n\
  762.     Times-BoldItalic:        -linotype-times-bold-i-normal-- \n\
  763.     Times-Italic:            -linotype-times-medium-i-normal-- \n\
  764.     Times-Roman:            -linotype-times-medium-r-normal-- \n\
  765.     Utopia-Bold:            -adobe-utopia-bold-r-normal-- \n\
  766.     Utopia-BoldItalic:        -adobe-utopia-bold-i-normal-- \n\
  767.     Utopia-Italic:            -adobe-utopia-regular-i-normal-- \n\
  768.     Utopia-Regular:            -adobe-utopia-regular-r-normal-- \n\
  769.     ZapfChancery-MediumItalic:    -itc-zapfchancery-medium-i-normal-- \n
  770. Ghostscript.dingbatFonts: \
  771.     ZapfDingbats:            -itc-zapfdingbats-medium-r-normal--
  772. Ghostscript.symbolFonts: \
  773.     Symbol:                --symbol-medium-r-normal--
  774.  
  775. Users who switch regularly between different X servers may wish to use the
  776. '*' wild card in place of the foundry name (itc, monotype, linotype, b&h,
  777. or adobe); users who do not switch X servers should leave the explicit
  778. foundry in the name, since it speeds up font accessing.
  779.  
  780. To set these resources, put them in a file (such as ~/.Xdefaults) in the
  781. following form:
  782.  
  783. Ghostscript*geometry:    -0+0
  784. Ghostscript*xResolution: 72
  785. Ghostscript*yResolution: 72
  786.  
  787. Then load the defaults into the X server:
  788.  
  789. % xrdb -merge ~/.Xdefaults
  790.  
  791. Ghostscript will take advantage of the "HP XLFD Enhancements," if
  792. available, to use native X11 fonts for fonts that are anamorphically
  793. scaled, rotated, or mirrored.  If the user has installed these changes to
  794. their X or font server, they will automatically be used when appropriate.
  795.  
  796. SCO Unix
  797. --------
  798.  
  799. Because of bugs in the SCO Unix kernel, Ghostscript will not work if you
  800. select direct screen output (gdevsco.c) and also allow it to write messages
  801. on the console.  If you are using direct screen output, redirect
  802. Ghostscript's terminal output to a file.
  803.  
  804. ********
  805. ******** Switches
  806. ********
  807.  
  808. Unless otherwise noted, these apply to all platforms.
  809.  
  810. Normal switches
  811. ---------------
  812.  
  813.     Input control
  814.     -------------
  815.  
  816.     @filename
  817.         Causes Ghostscript to read filename and treat its
  818.         contents the same as the command line.  (This is
  819.         intended primarily for getting around MS-DOS's
  820.         128-character limit on the length of a command line.)
  821.         Switches or file names in the file may be separated by
  822.         any amount of white space (space, tab, line break);
  823.         there is no limit on the size of the file.
  824.  
  825.     -- filename arg1 ...
  826.     -+ filename arg1 ...
  827.         Takes the next argument as a file name as usual, but takes
  828.         all remaining arguments (even if they have the syntactic
  829.         form of switches) and defines the name ARGUMENTS in
  830.         userdict (not systemdict) as an array of those strings,
  831.         *before* running the file.  When Ghostscript finishes
  832.         executing the file, it exits back to the shell.
  833.  
  834.     -@ filename arg1 ...
  835.         Does the same thing as -- and -+, but expands @filename
  836.         arguments.
  837.  
  838.     -
  839.         This is not really a switch.  It indicates to Ghostscript
  840.         that the standard input is coming from a file or a pipe.
  841.         Ghostscript reads from stdin until reaching end-of-file,
  842.         executing it like any other file, and then continues
  843.         processing the command line.  At the end of the command
  844.         line, Ghostscript exits rather than going into its
  845.         interactive mode.  NOTE: this switch works only for
  846.         PostScript, not for PDF.
  847.  
  848.     -c tokens ...
  849.         Interprets arguments, up to the next argument that begins
  850.         with - followed by a non-digit or with @, as PostScript
  851.         code.  For example, if the file quit.ps contains just
  852.         the word `quit', the following are equivalent:
  853.             quit.ps
  854.         and
  855.             -c quit
  856.         Each argument must be exactly one token, as defined by
  857.         the `token' operator.
  858.  
  859.     -ffilename
  860.         Execute the given file, even if its name begins with a -
  861.         or an @.  -f alone does nothing, but it provides a
  862.         convenient way to terminate the list of tokens for the -c
  863.         switch.
  864.  
  865.     File searching
  866.     --------------
  867.  
  868.     Note that by "library files" we mean all the files identified as
  869.     using the search rule under "File searching" above: Ghostscript's
  870.     own initialization files, fonts, and files named on the command
  871.     line.
  872.  
  873.     -Idirectories
  874.         Adds the designated list of directories at the head of the
  875.         search path for library files.
  876.  
  877.     -P
  878.         Makes Ghostscript look first in the current directory for
  879.         library files.  This is currently the default.
  880.     -P-
  881.         Makes Ghostscript *not* look first in the current directory
  882.         for library files (unless, of course, the first explicitly
  883.         supplied directory is `.').
  884.  
  885.     Parameter setting
  886.     -----------------
  887.  
  888.     -Dname=token
  889.     -dname=token
  890.         Define a name in systemdict with the given definition.
  891.         The token must be exactly one token (as defined by the
  892.         'token' operator) and must not contain any whitespace.
  893.         If the token is a non-literal name, it must be true,
  894.         false, or null.
  895.  
  896.     -Dname
  897.     -dname
  898.         Define a name in systemdict with value=true.
  899.  
  900.     -Sname=string
  901.     -sname=string
  902.         Define a name in systemdict with a given string as value.
  903.         This is different from -d.  For example,
  904.             -dname=35
  905.         is equivalent to the program fragment
  906.             /name 35 def
  907.         whereas
  908.             -sname=35
  909.         is equivalent to
  910.             /name (35) def
  911.  
  912.     -uname
  913.         Un-define a name, cancelling -d or -s.
  914.  
  915.     -gnumber1xnumber2
  916.         Equivalent to -dDEVICEWIDTH=number1 and
  917.         -dDEVICEHEIGHT=number2, specifying the device width and
  918.         height in pixels.  This is for the benefit of devices (such
  919.         as X11 windows and VESA displays) that require (or allow)
  920.         width and height to be specified.  Note that this causes
  921.         documents of other sizes to be clipped, not scaled:
  922.         see -dFIXEDMEDIA below.
  923.  
  924.     -rnumber
  925.     -rnumber1xnumber2
  926.         Equivalent to -dDEVICEXRESOLUTION=number1 and
  927.         -dDEVICEYRESOLUTION=number2, specifying the device
  928.         horizontal and vertical resolution in pixels per inch.  This
  929.         is for the benefit of devices (such as printers) that
  930.         support multiple X and Y resolutions.
  931.  
  932.     Miscellaneous
  933.     -------------
  934.  
  935.     -q
  936.         Quiet startup -- suppress normal startup messages,
  937.         and also do the equivalent of -dQUIET.
  938.  
  939. Note that gs_init.ps makes systemdict read-only, so the values of names
  940. defined with -D/d/S/s cannot be changed (although, of course, they can be
  941. superseded by definitions in userdict or other dictionaries.)
  942.  
  943. Special names
  944. -------------
  945.  
  946. -dBATCH
  947.     causes Ghostscript to exit after processing all files named on the
  948. command line, rather than going into an interactive loop reading PostScript
  949. commands.  Equivalent to putting -c quit at the end of the command line.
  950.  
  951. -dCOLORSCREEN
  952. -dCOLORSCREEN=0
  953. -dCOLORSCREEN=false
  954.     On high-resolution devices (at least 150 dpi resolution, or
  955. -dDITHERPPI specified), -dCOLORSCREEN forces the use of separate halftone
  956. screens with different angles for C/M/Y/K or R/G/B if halftones are needed
  957. (this produces the best-quality output); -dCOLORSCREEN=0 uses separate
  958. screens with the same frequency and angle; -dCOLORSCREEN=false forces the
  959. use of a single binary screen.  If COLORSCREEN is not specified, the default
  960. is to use separate screens with different angles if the device has fewer
  961. than 5 bits per color, and a single binary screen (which will never actually
  962. be used under normal circumstances) on all other devices.
  963.  
  964. -dDELAYBIND
  965.     causes 'bind' to remember all its invocations, but not actually
  966. execute them until the .bindnow procedure is called.  Useful only for
  967. certain specialized packages like pstotext that redefine operators.
  968.  
  969. -dDISKFONTS
  970.     causes individual character outlines to be loaded from the disk the
  971. first time they are encountered.  (Normally Ghostscript loads all the
  972. character outlines when it loads a font.)  This may allow loading more
  973. fonts into RAM, at the expense of slower rendering.  DISKFONTS is only
  974. effective if the diskfont feature was selected in the executable; otherwise
  975. it is ignored.
  976.  
  977. -dDITHERPPI=lpi
  978.     forces all devices to be considered high-resolution, and forces use
  979. of a halftone screen or screens with lpi lines per inch, disregarding the
  980. actual device resolution.  Reasonable values for lpi are N/5 to N/20, where
  981. N is the resolution in dots per inch.
  982.  
  983. -dFIXEDMEDIA
  984.     causes the media size to be fixed after initialization, and causes
  985. pages of other sizes or orientations to be clipped.  This may be useful when
  986. printing documents on a printer that can handle their requested paper size
  987. but whose default is some other size.  Note that -g automatically sets
  988. -dFIXEDMEDIA, but -sPAPERSIZE= does not.
  989.  
  990. -dFIXEDRESOLUTION
  991.     causes the media resolution to be fixed similarly.  -r automatically
  992. sets -dFIXEDRESOLUTION.
  993.  
  994. -dLOCALFONTS
  995.     causes Type 1 fonts to be loaded into the current VM, which is
  996. normally local VM, instead of always being loaded into global VM.  Only
  997. useful for compatibility with Adobe printers for loading some obsolete
  998. fonts.
  999.  
  1000. -dNOBIND
  1001.     disables the 'bind' operator.  Only useful for debugging.
  1002.  
  1003. -dNOCACHE
  1004.     disables character caching.  Only useful for debugging.
  1005.  
  1006. -dNOCIE
  1007.     substitutes DeviceGray and DeviceRGB for CIEBasedA and CIEBasedABC
  1008. color spaces respectively.  Only useful on very slow systems where color
  1009. accuracy is less important.
  1010.  
  1011. -dNODISPLAY
  1012.     initializes Ghostscript with a null device (a device that discards
  1013. the output image) rather than the default device or the device selected with
  1014. -sDEVICE=.  This is usually only useful when running PostScript code whose
  1015. purpose is to compute something rather than produce an output image.
  1016.  
  1017. -dNOFONTMAP
  1018.     suppresses the normal loading of the Fontmap file.  This may be
  1019. useful in environments without a file system.
  1020.  
  1021. -dNOFONTPATH
  1022.     suppresses consultation of GS_FONTPATH.  This may be useful for
  1023. debugging.
  1024.  
  1025. -dNOGC
  1026.     suppresses the initial automatic enabling of the garbage collector
  1027. in Level 2 systems.  (The vmreclaim operator is not disabled.)  Only useful
  1028. for debugging.
  1029.  
  1030. -dNOPAUSE
  1031.     disables the prompt and pause at the end of each page.  Normally one
  1032. should use this (along with -dBATCH) when producing output on a printer or
  1033. to a file; it also may be desirable for applications where another program
  1034. is 'driving' Ghostscript.
  1035.  
  1036. -dNOPLATFONTS
  1037.     disables the use of fonts supplied by the underlying platform
  1038. (X Windows or Microsoft Windows).  This may be needed if the platform
  1039. fonts look undesirably different from the scalable fonts.
  1040.  
  1041. -dNOPROMPT
  1042.     disables only the prompt, but not the pause, at the end of each
  1043. page.  This may be useful on PC displays that get confused if a program
  1044. attempts to write text to the console while the display is in a graphics
  1045. mode.
  1046.  
  1047. -dORIENT1=false
  1048.     indicates that the file uses a value of 0 to indicate portrait
  1049. orientation to setpage[params] rather than the default orientation of 1.
  1050. This is needed for some files produced by badly designed applications that
  1051. 'know' that the output will be printed on certain roll-media printers.
  1052.  
  1053. -dQUIET
  1054.     suppresses routine information comments on stdout.  This is
  1055. currently necessary when redirecting device output to stdout.
  1056.  
  1057. -dSAFER
  1058.     disables the deletefile and renamefile operators, and the
  1059. ability to open files in any mode other than read-only.  This may be
  1060. desirable for spoolers or other sensitive environments.
  1061.  
  1062. -dSHORTERRORS
  1063.     makes certain error and information messages more Adobe-compatible.
  1064.  
  1065. -dWRITESYSTEMDICT
  1066.     leaves systemdict writable.  This is necessary when running
  1067. special utility programs such as font2c and pcharstr, which must bypass
  1068. normal PostScript access protection.
  1069.  
  1070. -sDEVICE=device
  1071.     selects an alternate initial output device, as described above.
  1072.  
  1073. -sFONTMAP=filename1;filename2;...
  1074.     specifies (an) alternate name(s) for the Fontmap file.  Note that
  1075. the names are separated by : on Unix systems, by ; on MS-DOS or MS Windows
  1076. systems, and by , on VMS systems, just as for search paths.
  1077.  
  1078. -sFONTPATH=dir1;dir2;...
  1079.     specifies a list of directories that will be scanned automatically
  1080. for fonts, overriding the GS_FONTPATH environment variable.
  1081.  
  1082. -sOutputFile=filename
  1083.     selects an alternate output file (or pipe) for the initial output
  1084. device, as described above.
  1085.  
  1086. -sSUBSTFONT=fontname
  1087.     causes the given font to be substituted for all unknown fonts,
  1088. instead of using the normal intelligent substitution algorithm.  Also, in
  1089. this case, the font returned by findfont will be the actual font named
  1090. fontname, not a copy of the font with the FontName changed to the requested
  1091. one.
  1092.  
  1093. Debugging switches
  1094. ------------------
  1095.  
  1096. The -Z switch only applies if the interpreter was built for a
  1097. debugging configuration (DEBUG=1 or -DDEBUG selected at compile
  1098. time).
  1099.  
  1100.     -A    Fill empty storage with a distinctive bit pattern
  1101.         for debugging.  Equivalent to -Z@.
  1102.     -A-    Turn off -A, equivalent to -Z-@.
  1103.  
  1104.     -E    Turn on tracing of error returns from operators.
  1105.         Equivalent to -Z#.
  1106.     -E-    Turn off -E, equivalent to -Z-#.
  1107.  
  1108.     -Mn    Force the interpreter's allocator to acquire additional
  1109.         memory in units of nK, rather than the default (currently
  1110.         20K on MS-DOS systems, 50K on Unix).  n is a positive
  1111.         decimal integer (not exceeding 63 on MS-DOS systems).
  1112.  
  1113.     -Nn    Allocate space for nK names, rather than the default
  1114.         (normally 64K).  n > 64 is only allowed if the interpreter
  1115.         was compiled with EXTEND_NAMES defined.
  1116.  
  1117.     -Zxxx    Turn on debugging printout.
  1118.     -Z-xxx    Turn off debugging printout.
  1119.         Each of the xxx characters selects an option.
  1120.         Case is significant.
  1121.             0 = garbage collector, minimal detail
  1122.             1 = type 1 & type 42 font interpreter
  1123.             2 = curve subdivider/rasterizer
  1124.               3 = curve subdivider/rasterizer, detail
  1125.             4 = garbage collector (strings)
  1126.               5 = garbage collector (strings, detail)
  1127.             6 = garbage collector (chunks, roots)
  1128.               7 = garbage collector (objects)
  1129.               8 = garbage collector (refs)
  1130.               9 = garbage collector (pointers)
  1131.             a = allocator (large blocks only)
  1132.               A = allocator (all calls)
  1133.             b = bitmap image processor
  1134.               B = bitmap images, detail
  1135.             c = color/halftone mapper
  1136.             d = dictionary put/undef
  1137.               D = dictionary lookups
  1138.             e = external (OS-related) calls
  1139.             f = fill algorithm (summary)
  1140.               F = fill algorithm (detail)
  1141.             g = gsave/grestore[all]
  1142.             h = halftone renderer
  1143.               H = halftones, every pixel
  1144.             i = interpreter, just names
  1145.               I = interpreter, everything
  1146.             j = (Japanese) composite fonts
  1147.             k = character cache & xfonts
  1148.               K = character cache, every access
  1149.             l = command lists, bands
  1150.               L = command lists, everything
  1151.             m = makefont and font cache
  1152.             n = name lookup (new names only)
  1153.             o = outliner (stroke)
  1154.               O = stroke detail
  1155.             p = band list paths
  1156.               P = all paths
  1157.             q = clipping
  1158.             r = arc renderer
  1159.             s = streams
  1160.               S = scanner
  1161.             t = tiling algorithm
  1162.             u = undo saver (for save/restore), finalization
  1163.               U = undo saver, more detail
  1164.             v = rectangle fill
  1165.               V = device-level output
  1166.             w = compression encoder/decoder
  1167.             x = transformations
  1168.             y = Type 1 hints
  1169.               Y = Type 1 hints, every access
  1170.             z = trapezoid fill
  1171.             # = operator error returns
  1172.             % = externally processed comments
  1173.             * = image parameters
  1174.             : = command list, summary only
  1175.             ~ = math functions
  1176.         The following switches select debugging options other than
  1177.         printout.
  1178.             $ = set unused parts of object references to
  1179.                 identifiable garbage values
  1180.             + = use minimum-size stack blocks
  1181.             , = don't use path-based banding
  1182.             . = use small-memory table sizes even on
  1183.                 large-memory machines
  1184.             ? = validate pointers before, during and after GC,
  1185.                 also before and after save and restore;
  1186.                 also make other allocator validity checks
  1187.             @ = fill newly allocated, garbage-collected, and
  1188.                 freed storage with a marker (a1, c1, and
  1189.                 f1 respectively)
  1190.  
  1191. ********
  1192. ******** Frequently Asked Questions
  1193. ********
  1194.  
  1195. Please consult our FAQ on the World-Wide Web at
  1196.     http://www.cs.wisc.edu/~ghost/gsfaq.html
  1197. or the text version at
  1198.     http://www.cs.wisc.edu/~ghost/gsfaq.txt
  1199.